home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / NLB_FADE.ZIP / NAILBOMB.NFO < prev    next >
Text File  |  1995-06-07  |  4KB  |  78 lines

  1.               .._ _________ ____     ____________    ______  ______. .
  2.     _____ ._____________  /_____)___ \______    /    \__   \|   __/__________.
  3.     \__  \|    __/   __  /_  .::|   | /   _   _/______/_    \    \ _____    /
  4.      /   \\     \_    /   /    .|   |____ /     /  __   \ \    /  \/  _   _/_
  5.    _/     \______/   ___ /______|   |    \_____/    /    \_\  /___/   /     /
  6.    \______|     \___/         /___________\.._ __________/. \/ ./__________/
  7.  
  8. ═══════════════════════════════════════════════════════════════════════════════
  9.                                  Fade Routine
  10. ───────────────────────────────────────────────────────────────────────────────
  11.  Done By      : ASH                      Total Files  : None
  12.  Protection   : None                     Release Date : 06-06-95
  13.  Program Type : .ASM                     Filename     : NLB-FADE.ZIP
  14. ═══════════════════════════════════════════════════════════════════════════════
  15.  
  16.   Release Notes : Just a fade routine on request from some dude I know
  17.                   maybe someone else got some hot plans with diz (guess not)
  18.                   And for all you dudes who don't know what CD they should
  19.                   but this time.. buy that Siamese Dream from the Smashing
  20.                   Pumpkins.. it gives a relaxed feeling :)
  21.   
  22.   NLB News      : NailBomb is getting better in skills nowadays, but a
  23.                   single problem can't remain unsolved. 'INACTIVE MEMBERS'..
  24.                   so 'we' (me, Slack, Impure) decided to create a vote list
  25.                   -NAILBOMB MEMBERS ONLY-, to put inactive members out of the
  26.                   group (as sad as it may be). Also members with a to small
  27.                   ammount of skills will be asked friendly to search another
  28.                   group.
  29.                   In a next release it will be clear which people we are
  30.                   talking about..
  31.  
  32.   NLB Greets    : Tragos, Demoralize, The Brain, Pino, Skizmo, Diablo, Gmc,
  33.                   Valos, Xtreeman, Sir, NothingFace blablablabla..
  34.  
  35.   Groups        : The Amazing Family, Ground Zero, Razor, Pwa blablabla..
  36.                   SPECIAL GREETS goto The Kip Brigade!..(I think you're cool)
  37.  
  38. ═══════════════════════════════════════════════════════════════════════════════
  39.  
  40.   A fade routine is nothing but a loop which contains:
  41.    - vertical retrace
  42.    - palette write
  43.    - palette increase/decrease
  44.  
  45.   This is all, I hope you kinda know what this all means.
  46.   Hmm.. a vertical retrace just makes sure it goes smooth blablabla...
  47.   With writing the palette I simply mean port 3C8h or just interrupt 10H,
  48.   But when you use the interrupt (easy way eh), you should know it's a bit
  49.   slower than a port.. but hey.. here follows some code:
  50.  
  51.   ; Dump the palette (port)
  52.         MOV     DX,3C8H         ; Port selection
  53.         LEA     SI,[PALETTE]    ; Source index is offset of Palette
  54.         MOV     CX,768          ; Do all 256 colours (256x3,RGB)
  55.         XOR     AL,AL           ; We start at colour zero
  56.         OUT     DX,AL           ; Write selections to po
  57.         INC     DX              ; Step over to port 3C9h
  58.         REP     OUTSB           ; Write all
  59.  
  60.   I think the whole idea behind a fader is quite easy, so check out the
  61.   source which should be with this pack.. FADE.ASM..
  62.   there are enough comments in there I think
  63.  
  64. ═══════════════════════════════════════════════════════════════════════════════
  65.   Name:                    Status:     Number:        Nds:  Sysop:
  66. ───────────────────────────────────────────────────────────────────────────────
  67.   Edge Of Honor WHq······· World HQ··· +31-2159-37816  3    XtreeMan··········
  68.   Golden Image············ German HQ·· +49-XXXX-XXXX   3    Brian·············
  69.   Underworld·············· Swiss HQ··· +43-XXXXXXXXX   1    Psycho············
  70.   Stopoint················ Brazil HQ·· +55-21-611-3362 1    Shadow············
  71.   Fiction················· Apply······ +31-77-826906   1    SlackJaw··········
  72. ═══════════════════════════════════════════════════════════════════════════════
  73.                                Together We Stand:
  74.  
  75.      Ash, Heretic, Impure, SlackJaw, Sonic, Synopsis, The Weazel, Tweak,
  76.                                Virago & WizzyWiz.
  77. ═══════════════════════════════════════════════════════════════════════════════
  78.